System.Collections.IList.Add Method

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Adds an item to the end of the list. This method is equivalent to calling:
 Copy imageCopy Code
Insert(Count, item)

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
private int IList.Add(
	Object value
)
Visual Basic (Declaration)
Private Function System.Collections.IList.Add ( _
	value As Object _
) As Integer Implements IList.Add
Visual C++
private:
virtual int System.Collections.IList.Add (
	Object^ value
) sealed = IList::Add

Parameters

value
Object
The item to add to the list.

Exceptions

ExceptionCondition
System..::ArgumentExceptionvalue cannot be converted to T.

See Also